runtime.evacDst.i (field)
17 uses
runtime (current package)
map.go#L1145: i int // key/elem index into b
map.go#L1222: if dst.i == bucketCnt {
map.go#L1224: dst.i = 0
map.go#L1228: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map.go#L1239: dst.i++
map_fast32.go#L422: if dst.i == bucketCnt {
map_fast32.go#L424: dst.i = 0
map_fast32.go#L428: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_fast32.go#L439: dst.i++
map_fast64.go#L424: if dst.i == bucketCnt {
map_fast64.go#L426: dst.i = 0
map_fast64.go#L430: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_fast64.go#L447: dst.i++
map_faststr.go#L450: if dst.i == bucketCnt {
map_faststr.go#L452: dst.i = 0
map_faststr.go#L456: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_faststr.go#L462: dst.i++
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)